home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-02 | 423 b | 25 lines |
- #!smake
-
- include /usr/include/make/commondefs
-
- TARGETS = player walk
-
- C++FILES = player.c++ walk.c++
-
- LLDLIBS = -lInventorXt -lInventor -lXm -lXt -lPW -lsphere -limage -lX11 -lm
-
- # Un-comment the next line to debug...
- #OPTIMIZER = -g
- LC++DEFS = -DFUNCPROTO
- LC++OPTS = -G 0
-
- all default: $(TARGETS)
-
- include $(COMMONRULES)
-
- walk: walk.o
- $(C++F) -o $@ walk.o $(LDFLAGS)
-
- player: player.o
- $(C++F) -o $@ player.o $(LDFLAGS)
-